home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / prog / cfuncs.zip / FGETLN.DOC < prev    next >
Text File  |  1991-05-13  |  553b  |  13 lines

  1. /*--------------------------------------------------------------*/
  2. /*----------------------------- fgetln -------------------------*/
  3. /*DESCRIPTION: Copies chars from the stream fp to dest until    */
  4. /*    a newline char is encountered.  Does not place the     */
  5. /*    newline ch in dest.  Dest is null terminated.        */
  6. /*                                */
  7. /*RETURNS: the address of dest or NULL on end of file or error    */
  8. /*USES: nothing                            */
  9. /*IN: ffile.c                             */
  10. /*--------------------------------------------------------------*/
  11.  
  12. char *fgetln(char *dest, FILE *fp)
  13.